* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", 
                 "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles - Fixed on mobile */
.header-outer {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #ffffff, #ffffff);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    height: 70px;
    width: 100%;
    background: none;
}

.logo {
    margin-left: 0;
    background-color: #fff;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 0;
    margin-left: auto;
    height: 70px;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    height: 70px;
}

.nav-utils {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    height: 70px;
}

/* Navigation buttons - each independent like the dropdown */
.nav-button {
    background-color: #2b9589;
    color: white;
    border: none;
    padding: 0 15px;
    height: 70px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 70px;
}

.nav-button:hover {
    background-color: #4ec3b0;
}

/* Navigation links in nav-links (same as nav-button) */
.nav-links a {
    background-color: #2b9589;
    color: white;
    border: none;
    padding: 0 15px;
    height: 70px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 70px;
}

.nav-links a:hover {
    background-color: #4ec3b0;
}

/* Mobile menu button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
}

.menu-icon {
    width: 100%;
    height: 3px;
    background-color: #2b9589;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-button.active .menu-icon:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .menu-icon:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.language-selector {
    background-color: #207e74;
    color: white;
    border: none;
    padding: 0 2rem;
    height: 70px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    width: 150px;
    margin-right: 0;
    line-height: 70px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.language-selector:hover {
    background-color: #4ec3b0;
}

#langSelect {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 140px;
    transition: background-color 0.3s ease !important;
}

#langSelect:hover {
    background-color: #4ec3b0 !important;
}

#langSelect option {
    padding: 8px;
    color: #333;
    background-color: #fff;
}

.search-icon {
    margin-left: -1px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2b9589;
    border-radius: 0;
    width: 70px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 1002;
}

.search-icon.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.search-icon::before {
    line-height: 70px;
}

.search-icon:hover {
    background-color: #4ec3b0;
}

/* Mobile styles - ENHANCED RESPONSIVENESS */
@media (max-width: 1024px) {
    /* Ensure body has padding to account for fixed header */
    body {
        padding-top: 70px;
    }
    
    /* Adjust header height for mobile */
    .header {
        height: 70px;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Make sure header-outer takes full width */
    .header-outer {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .mobile-menu-button {
        display: flex !important;
        margin: 0 15px 0 auto;
        padding: 10px;
        background: rgba(43, 149, 137, 0.1);
        border-radius: 6px;
        transition: all 0.2s ease;
        order: 2;
    }
    
    .mobile-menu-button:hover {
        background: rgba(43, 149, 137, 0.2);
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.2s ease;
        backdrop-filter: blur(2px);
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        max-height: 0;
        overflow-y: auto;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        padding: 0 15px !important;
        border-top: 1px solid #e2e8f0;
        border-radius: 0 0 12px 12px;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-10px);
        will-change: transform, opacity, max-height;
        /* Ensure content below is pushed down */
        margin-bottom: 0;
    }

    /* When active → full height, visible, padded */
    .nav.active {
        max-height: 100vh !important;
        opacity: 1;
        padding: 24px 18px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(0);
        border: 1px solid #e2e8f0;
        border-top: none;
    }

    /* Make items clearly visible and tappable */
    .nav-links,
    .nav-utils,
    .nav-search {
        width: 100%;
    }

    .nav a,
    .language-selector,
    .search-icon {
        width: 100% !important;
        min-height: 56px !important;
        padding: 14px 18px !important;
        margin: 8px 0 !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        background-color: #ffffff !important;
        color: #1a5d56 !important;
        border: 1.5px solid #c0e0d8 !important;
        text-align: left !important;
        box-sizing: border-box !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .nav a:hover,
    .language-selector:hover,
    .search-icon:hover {
        background-color: #f5fbfa !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(43, 149, 137, 0.08);
        color: #2b9589 !important;
    }
    
    .nav a:active,
    .language-selector:active,
    .search-icon:active {
        transform: translateY(0);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    /* Language selector specific */
    #langSelect {
        width: 100% !important;
        min-height: 56px !important;
        font-size: 15px !important;
        padding: 12px 20px !important;
        background-color: #f8fafc !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232b9589' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 15px center !important;
        background-size: 16px 16px !important;
        color: #2b9589 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        margin: 5px 0 !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        padding-right: 45px !important;
    }
}

/* Small mobile improvements */
@media (max-width: 480px) {
    body {
        padding-top: 54px;
    }
    
    .header {
        height: 54px;
        padding: 0;
    }
    
    .header-outer {
        height: 54px;
    }
    
    .mobile-menu-overlay,
    .nav {
        top: 54px;
    }
    
    .logo {
        padding: 0.4rem;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .mobile-menu-overlay {
        top: 54px;
    }
    
    .nav {
        top: 54px !important;
        padding: 0 10px !important;
    }
    
    .nav.active {
        padding: 16px !important;
        max-height: 100vh !important;
    }
    
    .nav a, 
    .language-selector, 
    .search-icon, 
    #langSelect {
        padding: 12px 14px !important;
        font-size: 14px !important;
        min-height: 50px !important;
        margin: 6px 0 !important;
        border-radius: 8px !important;
    }
    
    .mobile-menu-button {
        margin-right: 6px;
        width: 28px;
        height: 22px;
        padding: 6px 5px;
    }
    
    .menu-icon {
        height: 2px;
        border-radius: 1px;
    }
    
    /* Active state for menu items */
    .nav a.active {
        background-color: #eefaf9 !important;
        color: #2b9589 !important;
        font-weight: 700 !important;
        border-left: 2px solid #2b9589 !important;
    }
}

/* Search Section Styles - EXACT ORIGINAL POSITIONING */
.search-section {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 999;
    opacity: 0;
}

.animate-in {
    animation: slideIn 0.3s ease forwards;
}

.animate-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.search-container {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.search-header h3 {
    color: #4b5563;
    font-size: 1.25rem;
    font-weight: 600;
}

.search-close {
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.search-close:hover {
    color: #2b9589;
    transform: rotate(90deg);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #4ec3b0;
    box-shadow: 0 0 0 3px rgba(78, 181, 166, 0.1);
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1rem;
}

.search-results .p-4 {
    padding: 1rem;
}

.search-results .text-blue-600 {
    color: #2b9589;
}

.search-results .hover\:bg-gray-50:hover {
    background-color: #f8fafc;
}

/* Mobile search adjustments */
@media (max-width: 768px) {
    .search-section {
        position: relative;
        top: 0;
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .search-container {
        padding: 0.75rem;
    }
    
    .search-input {
        padding: 0.75rem 0.75rem 0.75rem 3rem;
    }
}

/* Footer Styles */
.footer {
    background: #21b457;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Logo in footer */
.logo-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 4px;
    margin-right: 12px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
        height: 70px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-left: 0;
        height: auto;
    }

    .nav a {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #21b457;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .language-selector {
        width: 100%;
        height: auto;
        padding: 0.5rem 1rem;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #21b457;
    }

    .search-icon {
        margin-left: 0;
        margin-top: 0;
        height: auto;
        width: 100%;
        padding: 0.5rem;
        flex-grow: 0;
        border-radius: 0;
        border-bottom: none;
        line-height: normal;
        text-align: center;
    }

    .search-icon::before {
        line-height: normal;
    }

    .search-results {
        max-height: 300px;
    }

    .blue-section {
        display: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer {
        padding: 32px 0;
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* =====================================================
   CRITICAL: Protect Navbar from Google Translate CSS Override
   Google Translate injects global CSS that hides/breaks elements.
   These !important rules ensure navbar stays visible and styled.
   ===================================================== */

/* Force navbar and header visibility */
.header-outer,
.header,
.nav,
.nav-links,
.nav-utils,
.nav a,
.search-icon,
.language-selector,
.mobile-menu-button,
.logo,
.logo a,
.logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure nav flex layout is not overridden */
.header {
    display: flex !important;
}

.nav {
    display: flex !important;
}

.nav-links {
    display: flex !important;
}

.nav-utils {
    display: flex !important;
}

/* Protect language selector */
.language-selector {
    background-color: #207e74 !important;
    color: white !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
    line-height: 70px !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.language-selector:hover {
    background-color: #4ec3b0 !important;
}

/* Protect search icon */
.search-icon {
    color: white !important;
    background-color: #2b9589 !important;
    display: flex !important;
    visibility: visible !important;
}

.search-icon:hover {
    background-color: #4ec3b0 !important;
}

/* Protect Google Translate widget styling - Hide white background, blend with navbar */
#google_translate_element {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Hide Google Translate gadget container white background */
.goog-te-gadget {
    font-size: 0 !important;
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style the language selector dropdown to match navbar buttons */
.goog-te-combo {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    
    width: 100% !important;
    height: 100% !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    
    background-color: transparent !important;
    color: white !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    line-height: 70px !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

/* Hover state */
.goog-te-combo:hover {
    background-color: #4ec3b0 !important;
}

.goog-te-combo option {
    color: #2b9589 !important;
    background-color: white !important;
}

/* Hide the Google Translate banner completely */
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Hide any banner container */
.goog-te-banner {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

/* Hide the floating translate button that appears on some pages */
.goog-te-floating-button {
    display: none !important;
    visibility: hidden !important;
}

/* Hide banner iframe */
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

/* Hide all Google Translate iframes at the top of page */
body > iframe[id^='goog'] {
    display: none !important;
    visibility: hidden !important;
}

/* Hide Google Translate notification messages and dialogs */
.goog-te-notifbar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

/* Hide Google Translate popup notifications */
.goog-te-popup {
    display: none !important;
    visibility: hidden !important;
}

/* Hide Google banner elements globally */
[class*='goog-te-banner'],
[id*='goog-te-banner'],
[class*='google-translate'],
[id*='google-translate-banner'] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide any element with goog in ID or class that might be a banner */
[class*='goog'][class*='banner'],
[id*='goog'][id*='banner'] {
    display: none !important;
    visibility: hidden !important;
}

/* Specifically hide the notification area - multiple methods */
.goog-te-notifbar {
    position: fixed !important;
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
}

/* Alternative selector for notification bar */
.goog-te-notifbar-close {
    display: none !important;
}

/* Hide the iframe that contains the notification */
.goog-te-notifbar-frame {
    display: none !important;
    visibility: hidden !important;
}

/* Hide powered by Google text */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    width: 100% !important;
}

/* Ensure text inside selector is white */
.goog-te-combo > * {
    color: white !important;
}

/* Container wrapper styling */
.goog-te-gadget-simple .goog-te-combo {
    display: inline-block !important;
}

/* Align Google Translate selector to match header buttons */
#google_translate_element {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
    width: 150px !important;
    background-color: #207e74 !important;
    color: white !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* The actual select rendered by Google - DESKTOP */
.goog-te-combo,
select.goog-te-combo {
    height: 70px !important;
    width: 100% !important;
    line-height: 70px !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    background: transparent !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    appearance: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Force simple gadget wrapper layout - DESKTOP */
.goog-te-gadget-simple {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Responsive: in mobile the selector should behave like other nav items */
@media (max-width: 1024px) {
    #google_translate_element {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        background-color: transparent !important;
        padding: 0 !important;
    }
    .goog-te-combo, select.goog-te-combo {
        height: auto !important;
        line-height: normal !important;
        padding: 12px 16px !important;
        color: #2b9589 !important;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
    }
}

/* Protect nav items from Google Translate's :hover/:focus overrides */
.nav a:focus,
.nav a:active,
.search-icon:focus,
.search-icon:active,
.language-selector:focus,
.language-selector:active {
    background-color: #4ec3b0 !important;
    outline: none !important;
}

/* Force header height and layout */
.header-outer {
    height: auto !important;
    min-height: 70px !important;
    z-index: 1000 !important;
    position: relative !important;
}

.header {
    height: 70px !important;
    min-height: 70px !important;
    align-items: center !important;
}

/* Protect logo sizing */
.logo {
    height: 100% !important;
    min-height: 70px !important;
}

.logo img {
    height: 100% !important;
    width: auto !important;
}

/* Mobile menu button visibility */
@media (max-width: 1024px) {
    .mobile-menu-button {
        display: flex !important;
    }
    
    .nav {
        display: none !important;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .nav-utils {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Mobile Google Translate dropdown styling */
    #google_translate_element {
        width: 100% !important;
        height: auto !important;
        min-height: 48px !important;
        background-color: #f8fafc !important;
        padding: 12px 16px !important;
        margin: 2px 0 !important;
    }

    .goog-te-combo {
        width: 100% !important;
        height: auto !important;
        min-height: 48px !important;
        padding: 12px 16px !important;
        background-color: transparent !important;
        color: #2b9589 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 6px !important;
        font-size: 15px !important;
        text-align: left !important;
        line-height: normal !important;
    }

    .goog-te-combo:hover {
        background-color: #e6f7f5 !important;
    }
}

/* Extra protection for search UI in case translation proxy hides elements */
.search-container, .search-input, .search-results {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}